home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 1 (Walnut Creek)
/
Aminet - June 1993 [Walnut Creek].iso
/
usenet
/
sources
/
volume90
/
rexx
/
qf
/
part01
/
qf.txed
< prev
next >
Wrap
Text File
|
1990-05-20
|
709b
|
28 lines
/*
* qf.txed - a QuickFix startup macro for TxEd+ editor.
*/
/*
* Do the normal startup first.
*/
call startup
/*
* Then define some function keys for qf-functions.
*/
/* Function 2 saves and exits with no error */
'macro 2 qfquit 1 0'
/* Function 12 saves and exits with an error return */
'macro 12 qfquit 1 5'
/* Function 3 doesn't save and exits with an error return */
'macro 3 qfquit 0 5'
/* Function 7 steps to the previous suberror at the same error level */
'macro 7 qfprev 0'
/* Function 17 steps to the previous error */
'macro 17 qfprev 1'
/* Function 8 steps to the next suberror at the sae error level */
'macro 8 qfnext 0'
/* Function 18 steps to the next error */
'macro 18 qfnext 1'